Network Models

Epidemiological models on defined contact network.

All models are implemented in a Markov Chain Fashion (Next state $t+1$ only depend on current state $t$).

SIR Model

States: Susceptible ($S$), Infected ($I$), Recovered ($R$)

$P_e:$ Exposure Probability

$T_r:$ Recovery time

\begin{equation} \begin{split} S \rightarrow^{P_e} I\\ I \rightarrow^{1/T_r} R\\ \end{split} \end{equation}

SEIR Model

States: Susceptible ($S$), Exposed ($I$), Infected ($I$), Recovered ($R$)

$P_e:$ Exposure Probability

$T_i:$ Incubation Period

$T_r:$ Recovery time

\begin{equation} \begin{split} S \rightarrow^{P_e} E\\ E \rightarrow^{1/T_i} I\\ I \rightarrow^{1/T_r} R\\ \end{split} \end{equation}

SIR Dynamics